VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging Namespace / PointFAffineTransform Class / TransformPoints Methods / TransformPoints(AffineMatrix,PointF[]) Method
Syntax Requirements SeeAlso
In This Topic
    TransformPoints(AffineMatrix,PointF[]) Method (PointFAffineTransform)
    In This Topic
    Transforms the specified points using the specified AffineMatrix.
    Syntax
    'Declaration
    
    Public Overloads Shared Sub TransformPoints( _
    ByVal matrix
    The matrix that used to transform points.
    As AffineMatrix, _
    ByVal points
    The points to transform. The original points in the array are replaced by their transformed values.
    () As System.Drawing.PointF _
    )
    public static void TransformPoints(
    AffineMatrix matrix,
    System.Drawing.PointF[] points
    )
    public: static void TransformPoints(
    AffineMatrix* matrix,
    System.Drawing.PointF[]* points
    )
    public:
    static void TransformPoints(
    AffineMatrix^ matrix,
    array<System.Drawing.PointF>^ points
    )

    Parameters

    matrix
    The matrix that used to transform points.
    points
    The points to transform. The original points in the array are replaced by their transformed values.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also